home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / asp_mdms.zip / HST.ASP < prev    next >
Text File  |  1989-08-01  |  4KB  |  99 lines

  1. ;*************************************************************************
  2. ;* HST.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC.                         *
  3. ;*                                                                       *
  4. ;* An ASPECT script file for initializing the U.S. ROBOTICS COURIER HST  *
  5. ;* modem for proper use with PROCOMM PLUS.                               *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8.  
  9. CLEAR
  10. CUROFF
  11. BOX 0 0 9 58 14
  12. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  13. ATSAY 3 2 14 "U.S. ROBOTICS COURIER HST modem in all its operational"
  14. ATSAY 4 2 14 "modes, but the initial setup differs from the setup for"
  15. ATSAY 5 2 14 "ordinary non-error-correcting modems."
  16. ATSAY 7 2 14 "                 <press ENTER to continue>"
  17. WAIT1:
  18. IF NOT HITKEY
  19.    GOTO WAIT1
  20. ENDIF
  21. CLEAR
  22. BOX 0 0 17 59 14
  23. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  24. ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
  25. ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
  26. ATSAY 5 2 14 "the actual speed of the connection."
  27. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  28. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  29. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  30. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  31. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  32. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  33. ATSAY 13 2 14 "as you run this file."
  34. ATSAY 15 2 14 "                 <press ENTER to continue>"
  35. WAIT2:
  36. IF NOT HITKEY
  37.    GOTO WAIT2
  38. ENDIF
  39. CLEAR
  40. BOX 0 0 10 69 14
  41. ATSAY 2 2 14 "The COURIER HST requires some hardware setup before it can be used"
  42. ATSAY 3 2 14 "effectively with PROCOMM PLUS. The modem's bank of ten dipswitches"
  43. ATSAY 4 2 14 "should be set as follows:"
  44. ATSAY 6 2 14 "1)UP  2)UP  3)DOWN  4)UP  5)DOWN  6)UP  7)UP  8)DOWN  9)UP  10)UP"
  45. ATSAY 8 2 14 "                 <press ENTER to continue>"
  46. WAIT3:
  47. IF NOT HITKEY
  48.    GOTO WAIT3
  49. ENDIF
  50. CLEAR
  51. SOUND 440 50
  52. BOX 0 0 4 56 14
  53. ATSAY 2 2 14 "COURIER HST modem initialization... WORKING..."
  54. SET BAUDRATE 19200                        ;Set up comm line
  55. SET PARITY NONE
  56. SET DATABITS 8
  57. SET STOPBITS 1
  58. SET DISPLAY OFF
  59. SET TXPACE 100
  60. TRANSMIT "AT^M"                           ;Get modem's attention
  61. PAUSE 2
  62. TRANSMIT "ATZ^M"                          ;Resets non-volatile mem
  63. PAUSE 1
  64. TRANSMIT "AT&F^M"                         ;Get factory defaults
  65. PAUSE 1
  66. TRANSMIT "AT X7^M"                        ;Result codes on
  67. PAUSE 1
  68. TRANSMIT "AT &B1^M"                       ;Fix DTE/DCE baud rate
  69. PAUSE 1
  70. TRANSMIT "AT &H1^M"                       ;Hardware flow control
  71. PAUSE 1
  72. TRANSMIT "AT &R2^M"                       ;RTS
  73. PAUSE 1
  74. TRANSMIT "AT S7=60^M"                     ;CD timeout
  75. PAUSE 1
  76. TRANSMIT "AT S11=55^M"                    ;Speed up dialing
  77. PAUSE 1
  78. TRANSMIT "AT&W^M"                         ;Write settings to NRAM
  79. SET TXPACE 0
  80. CLEAR
  81. SET DISPLAY ON
  82. SOUND 440 50
  83. BOX 0 0 16 58 14
  84. ATSAY 2 2 14 "COURIER HST modem initialization - COMPLETED!"
  85. ATSAY 4 2 14 "Your HST modem will now power up with the proper"
  86. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  87. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  88. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  89. ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
  90. ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
  91. ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
  92. ATSAY 11 2 14 "should be should be set to 19200 baud, as well as your"
  93. ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
  94. ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
  95. ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
  96. CURON
  97. LOCATE 17 0
  98.  
  99.